1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.orekit.forces.gravity.potential;
18
19 import java.io.BufferedReader;
20 import java.io.IOException;
21 import java.io.InputStream;
22 import java.io.InputStreamReader;
23 import java.text.ParseException;
24 import java.util.ArrayList;
25 import java.util.List;
26 import java.util.Locale;
27
28 import org.hipparchus.util.FastMath;
29 import org.hipparchus.util.Precision;
30 import org.orekit.errors.OrekitException;
31 import org.orekit.errors.OrekitMessages;
32 import org.orekit.utils.Constants;
33
34
35
36
37
38
39
40
41
42 public class EGMFormatReader extends PotentialCoefficientsReader {
43
44
45 private final boolean useWgs84Coefficients;
46
47
48
49
50
51 public EGMFormatReader(final String supportedNames, final boolean missingCoefficientsAllowed) {
52 this(supportedNames, missingCoefficientsAllowed, false);
53 }
54
55
56
57
58
59
60
61
62
63
64 public EGMFormatReader(final String supportedNames, final boolean missingCoefficientsAllowed,
65 final boolean useWgs84Coefficients) {
66 super(supportedNames, missingCoefficientsAllowed);
67 this.useWgs84Coefficients = useWgs84Coefficients;
68 }
69
70
71
72 public void loadData(final InputStream input, final String name)
73 throws IOException, ParseException, OrekitException {
74
75
76 setReadComplete(false);
77
78
79
80
81
82 if (this.useWgs84Coefficients) {
83 setAe(Constants.WGS84_EARTH_EQUATORIAL_RADIUS);
84 setMu(Constants.WGS84_EARTH_MU);
85 } else {
86 setAe(Constants.EGM96_EARTH_EQUATORIAL_RADIUS);
87 setMu(Constants.EGM96_EARTH_MU);
88 }
89
90 final String lowerCaseName = name.toLowerCase(Locale.US);
91 if (lowerCaseName.contains("2008") || lowerCaseName.contains("zerotide")) {
92 setTideSystem(TideSystem.ZERO_TIDE);
93 } else {
94 setTideSystem(TideSystem.TIDE_FREE);
95 }
96
97 final BufferedReader r = new BufferedReader(new InputStreamReader(input, "UTF-8"));
98 final List<List<Double>> c = new ArrayList<List<Double>>();
99 final List<List<Double>> s = new ArrayList<List<Double>>();
100 boolean okFields = true;
101 for (String line = r.readLine(); okFields && line != null; line = r.readLine()) {
102 if (line.length() >= 15) {
103
104
105 final String[] tab = line.trim().split("\\s+");
106 if (tab.length != 6) {
107 okFields = false;
108 }
109
110 final int i = Integer.parseInt(tab[0]);
111 final int j = Integer.parseInt(tab[1]);
112 if (i <= getMaxParseDegree() && j <= getMaxParseOrder()) {
113 for (int k = 0; k <= i; ++k) {
114 extendListOfLists(c, k, FastMath.min(k, getMaxParseOrder()),
115 missingCoefficientsAllowed() ? 0.0 : Double.NaN);
116 extendListOfLists(s, k, FastMath.min(k, getMaxParseOrder()),
117 missingCoefficientsAllowed() ? 0.0 : Double.NaN);
118 }
119 parseCoefficient(tab[2], c, i, j, "C", name);
120 parseCoefficient(tab[3], s, i, j, "S", name);
121 }
122
123 }
124 }
125
126 if (missingCoefficientsAllowed() && getMaxParseDegree() > 0 && getMaxParseOrder() > 0) {
127
128 extendListOfLists(c, 0, 0, 0.0);
129 extendListOfLists(s, 0, 0, 0.0);
130 if (Precision.equals(c.get(0).get(0), 0.0, 0)) {
131 c.get(0).set(0, 1.0);
132 }
133 }
134
135 if ((!okFields) || (c.size() < 1)) {
136 String loaderName = getClass().getName();
137 loaderName = loaderName.substring(loaderName.lastIndexOf('.') + 1);
138 throw new OrekitException(OrekitMessages.UNEXPECTED_FILE_FORMAT_ERROR_FOR_LOADER,
139 name, loaderName);
140 }
141
142 setRawCoefficients(true, toArray(c), toArray(s), name);
143 setReadComplete(true);
144
145 }
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161 public RawSphericalHarmonicsProvider getProvider(final boolean wantNormalized,
162 final int degree, final int order)
163 throws OrekitException {
164 return getConstantProvider(wantNormalized, degree, order);
165 }
166
167 }